home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
cpptut22
/
flyaway.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-19
|
373b
|
14 lines
// This file contains a few general purpose definitions to be used
// with several of the FLYAWAY adventure game classes.
#ifndef FLYAWAY_H
#define FLYAWAY_H
#define FALSE 0
#define TRUE 1
enum word {north = 1, east, south, west, drop, get,
look, inventory, read, buy, help, quit,
keys, candy, ticket, money, monitor, paper};
#endif